跳到主要内容

安装 CloudNative PG

安装

Operator

helm repo add cnpg https://cloudnative-pg.github.io/charts

helm upgrade --install cnpg \
--namespace crater \
--set config.clusterWide=false \
cnpg/cloudnative-pg \
-f values.yaml

DB Cluster

helm show values cnpg/cluster

helm upgrade --install database \
--namespace crater \
cnpg/cluster \
-f cluster.values.yaml --dry-run

使用

连接到数据库

首先查看 Secret 中的账户密码:

kg secret database-cluster-app -ojson | jq '.data."jdbc-uri"' -r | base64 -D